Google News
logo
CPP - Quiz(MCQ)
Logical AND (&&) and Logical OR (||) are ___ operators.
A)
Comma
B)
Logical
C)
Equality
D)
Class member

Correct Answer :   Logical


Explanation : The logical AND ( && ) operator (logical conjunction) for a set of operands is true if and only if all of its operands are true. It is typically used with Boolean (logical) values. When it is, it returns a Boolean value.

Advertisement